home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1994 November / macformat-018.iso / Utility Spectacular / Utilities / Calc / label.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-24  |  534 b   |  22 lines  |  [TEXT/????]

  1. /*
  2.  * Copyright (c) 1992 David I. Bell
  3.  * Permission is granted to use, distribute, or modify this source,
  4.  * provided that this copyright notice remains intact.
  5.  */
  6.  
  7.  
  8. /*
  9.  * Label structures.
  10.  */
  11. typedef struct {
  12.     long l_offset;          /* offset into code of label */
  13.     long l_chain;          /* offset into code of undefined chain */
  14.     char *l_name;          /* name of label if any */
  15. } LABEL;
  16.  
  17. extern void initlabels(), definelabel(), addlabel();
  18. extern void checklabels(), clearlabel(), setlabel();
  19. extern void uselabel();
  20.  
  21. /* END CODE */
  22.